
* {
  cursor: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background: #000000;
  cursor: none;
  /* height: 100vh;
  overflow: hidden; */
}

.cursor-letter {
  position: fixed;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.cursor-letter svg path,
.cursor-letter svg rect,
.cursor-letter svg polygon,
.cursor-letter svg polyline,
.cursor-letter svg line {
  fill: rgb(0, 0, 0);
  stroke: rgb(255, 255, 255);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
  backdrop-filter: blur(20px); 
}




/* base */
:root {
  font-family: Inter, sans-serif;
  --stripe-color: #000;
  --bg: var(--stripe-color);
  --maincolor: var(--bg);
}



@keyframes smoothBg {
  from {
    background-position: 50% 50%, 50% 50%;
  }
  to {
    background-position: 350% 50%, 350% 50%;
  }
}

.wrapper {
  width: 100%;
  height: auto;
  position: relative;
  margin: 0;
  /* width: 100cqw;
  min-height: 100cqh; */
  place-content: center;
  background: #000000;
  /* color: #9ba6a6; */
}

.hero {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  place-content: center;
  place-items: center;

  --stripes: repeating-linear-gradient(
    100deg,
    var(--stripe-color) 0%,
    var(--stripe-color) 7%,
    transparent 10%,
    transparent 12%,
    var(--stripe-color) 16%
  );

  --rainbow: repeating-linear-gradient(
    100deg,
    #60a5fa 10%,
    #e879f9 15%,
    #60a5fa 20%,
    #5eead4 25%,
    #60a5fa 30%
  );

  background-image: var(--stripes), var(--rainbow);
  background-size: 300%, 200%;
  background-position: 50% 50%, 50% 50%;
  filter: blur(10px) opacity(50%) saturate(200%);
  mask-image: radial-gradient(ellipse at 100% 0%, black 40%, transparent 70%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--stripes), var(--rainbow);
  background-size: 200%, 100%;
  animation: smoothBg 60s linear infinite;
  background-attachment: fixed;
  mix-blend-mode: difference;
  filter: blur(10px) opacity(50%) saturate(200%);
}

.content {
  position: absolute;
  inset: 0;
  /* place-content: center; */
  place-items: center;
  flex-flow: column;
  gap: 4.5%;
  text-align: center;
  mix-blend-mode: difference;
  -webbkit-mix-blend-mode: difference;
  filter: invert(1);
}

.h1--scalingSize {
  font-size: calc(1rem - -5vw);
  position: relative;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}

.h1--scalingSize::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: white;
  text-shadow: 0 0 1px #ffffff;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-color: white;
  -webkit-mask: linear-gradient(#000 0 0) luminance;
  mask: linear-gradient(#000 0 0) luminance, alpha;
  backdrop-filter: blur(19px) brightness(12.5);
  -webkit-text-stroke: 1px white;
  display: flex;
  margin: auto;
  z-index: 1;
  pointer-events: none;
}



#mouse-scroll {
    margin-top: -90px;
    scale: block;
}

.home #mouse-scroll {
    margin-top: 310px;
    height: 100%;
    left: 500%;
    top: 320px;
    -webkit-transform: translateX(-50%);
    z-index: 9999;
}

#mouse-scroll span {
    display: flex;
    width: 5px;
    height: 5px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform: rotate(45deg);
    border-right: 2px solid #ECB21E;
    border-bottom: 2px solid #EFD9A5;
    margin: 0 0 3px 5px;
}

#mouse-scroll .mouse {
    margin: 3px auto;
    height: 21px;
    width: 14px;
    border-radius: 10px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    border: 2px solid #EFD9A5;
    top: 170px;
}

#mouse-scroll .down-arrow-1 {
    margin: auto;
}

#mouse-scroll .down-arrow-1,
#mouse-scroll .down-arrow-2,
#mouse-scroll .down-arrow-3 {
    margin: auto;
    -webkit-animation: mouse-scroll 1s infinite;
    -moz-animation: mouse-scroll 1s infinite;
}

#mouse-croll .down-arrow-1 {
    -webkit-animation-delay: .1s;
    -moz-animation-delay: .1s;
    -webkit-animation-direction: alternate;
}

#mouse-scroll .down-arrow-2 {
    -webkit-animation-delay: .2s;
    -moz-animation-delay: .2s;
    -webkit-animation-direction: alternate;
}

#mouse-scroll .down-arrow-3 {
    -webkit-animation-delay: .3s;
    -moz-animation-dekay: .3s;
    -webkit-animation-direction: alternate;
}

#mouse-scroll .mouse-in {
    height: 5px;
    width: 2px;
    display: block;
    margin: 5px auto;
    background: #ECB21E;
    position: relative;
}

#mouse-scroll .mouse-in {
    -webkit-animation: animated-mouse 1.2s ease infinite;
    moz-animation: mouse-animated 1.2s ease infinite;
}

@-webkit-keyframes animated-mouse {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(6px);
        -ms-transform: translateY(6px);
        transform: translateY(6px);
    }
}

@-webkit-keyframes mouse-scroll {
    0% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}

@keyframes mouse-scroll {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}
  .cta-button_10 {
        display: inline-flex;
        align-items: center;
        padding: 0.75rem 2rem;
        background-color: transparent;
        color: #facc15;
        border: 2px solid #facc15;
        border-radius: 9999px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        box-shadow: 0 0 10px #8a8a8a;
  }
 .cta-button_10:hover {
        background-color: #facc15;
        color: black;
        box-shadow: 0 0 20px #facc15, 0 0 30px #facc15;
      }
@media (max-width: 768px) {
  .content {
    /* position: relative; */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
    gap: 20px;
  }

  .h1--scalingSize {
    font-size: 1.8rem;
    line-height: 1.4;
    padding-top: 40px !important;
  }

  .h1--scalingSize::before {
    display: none; /* optional: to simplify appearance on mobile */
  }

  .subtitle {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 10px;
  }

  .cta-button {
    font-size: 12px;
    padding: 10px 20px;
    margin-top: -10px;
  }

  #mouse-scroll {
    position: relative;
    top: 130px;
    left: 0;
    margin: 0 auto;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    scale: 1;
  }

  .hero {
    min-height: 70vh;
  }
}
@media screen and (max-width:600px) {
    .subtitle{
        font-size: 14px;
        width: 26%;
    }
    .content{
      margin-top: 140px;
    }
    .cta-button_0{
      margin-left: 120px;
    }
}

  
  .tab-container {
    grid-column-gap: 3em;
    grid-row-gap: 3em;
    flex-flow: column;
    justify-content: space-around;
    align-items: flex-start;
    min-height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 2.5em;
    display: flex;
  }
  
  .tab-layout-container {
    width: 100%;
    max-width: 36em;
    height: 100%;
    margin-left: auto;
    margin-right: 0;
    padding-top: 1em;
    padding-bottom: 2em;
  }
  
  .tab-container-bottom {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }
  
  .tab-container-top {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }
  
  .tab-layout-col {
    width: 50%;
  }
  
  .tab-content-wrap {
    width: 100%;
    min-width: 24em;
    position: relative;
  }
  
  .content-button__bg {
    z-index: -1;
    background-color: #efeeec;
    border-radius: .25em;
    position: absolute;
    inset: 0%;
  }
  
  .content-p {
    margin: 0;
    font-size: 1.25em;
    line-height: 1.4;
    color: white;
  }
  
  .tab-button__bg {
    z-index: 0;
    background-color: #efeeec0f;
    border: 1px solid #efeeec14;
    border-radius: .25em;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
  }
  
  .tab-content-item {
    z-index: 1;
    grid-column-gap: 1.25em;
    grid-row-gap: 1.25em;
    visibility: hidden;
    flex-flow: column;
    display: flex;
    position: absolute;
    inset: auto 0% 0%;
  }
  
  .tab-content-item.active {
    visibility: visible;
  }
  
  .tab-layout {
    z-index: 1;
    grid-row-gap: 3em;
    flex-flow: wrap;
    width: 90%;
    min-height: 37em;
    display: flex;
    position: relative;
  }
  
  .filter-bar {
    background-color: #efeeec0f;
    border: 1px solid #efeeec14;
    border-radius: .5em;
    padding: .5em;
    display: flex;
        margin-bottom: 100px;

  }
  
  .filter-button {
    background-color: #0000;
    border: 1px solid #efeeec00;
    padding: 1.125em 1.5em;
    transition: border-color .2s;
    position: relative;
  }
  
  .filter-button.active {
    border-color: #efeeec4d;
    border-radius: .25em;
  }
  
  .filter-button__p {
    z-index: 1;
    font-size: 1.125em;
    position: relative;
    /* color:var(--color-light); */
    color: #fff;
  }
  
  .tab-visual-wrap {
    border-radius: .5em;
    width: 100%;
    height: 42em;
    max-height: 80vh;
    position: relative;
    overflow: hidden;
  }
  
  .tab-visual-item {
    visibility: hidden;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
  }
  
  .tab-visual-item.active {
    visibility: visible;
  }
  
  .tab-image {
    object-fit: cover;
    border-radius: .5em;
    width: 100%;
    max-width: none;
    height: 100%;
  }
  
  .tab-content__heading {
    font-family: "Audiowide", sans-serif;
    letter-spacing: -.02em;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.75em;
    font-weight: 500;
    line-height: 1;
    text-align: justify;
  }
  
  .tab-layout-heading {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 2em;
    font-weight: 500;
    line-height: 1;
    color: white;
  }
 
  
  .tab-content__button {
    color: #131313 !important;
    justify-content: center;
    align-items: center;
    height: 4em;
    padding-left: 1.5em;
    padding-right: 1.5em;
    text-decoration: none;
    display: flex;
    position: relative;
  }
  
  .tab-content__button:hover{
    color: #fff;
      background: rgb(145 123 29);
  }
  
  .corbla{
    color: black;
  }
  
  .corbla:hover{
    color: white;
  } 
  @media (max-width: 768px) {
  .tab-layout {
    align-items: center;
  }

  .tab-layout-col {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }

  .tab-visual-wrap {
    width: 100%;
    display: block;
    padding: 1rem;
  }

  .tab-visual-item.active {
    display: block;
    position: relative;
  }

  .tab-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    margin-left: 10px;
  }
}

  @media (max-width: 600px) {
  .tab-layout {
    flex-direction: column;
    align-items: center;
  }

  .tab-visual-wrap {
    order: -1;
    width: 100%;
    height: auto;
    max-height: none;
    display: block; /* ✅ make sure it's displayed */
    visibility: visible; /* ✅ force visibility */
  }

  .tab-visual-item.active {
    visibility: visible;
    position: relative;
    display: block; /* ✅ show image container */
  }

  .tab-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }
}

  @media (max-width: 600px) {
    .cloneable {
      min-height: 35vh;
      font-size: 6px;
      margin-bottom: -33px;
    }
    .tab-layout-container {
      width: 100%;
      max-width: 100%;
      height: 100%;
      margin-left: 8px;
      margin-right: 0;
      padding-top: 1em;
      padding-bottom: 2em;
  }
  .tab-layout {
    z-index: 1;
    grid-row-gap: 3em;
    width: 95%;
    display: flex
  ;
    position: relative;
  }
  .filter-button {
    background-color: #0000;
    border: 1px solid #efeeec00;
    transition: border-color .2s;
    position: relative;
    width: 56px;
  }
  .filter-button__p {
    z-index: 1;
    font-size: 0.9em;
    /* font-size: 1.125em; */
    position: relative;
    /* color: var(--color-light); */
    color: #fff;
    margin-left: -12px;
  }
  .tab-layout-heading {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 3em;
    font-weight: 500;
    line-height: 1;
  }
  .tab-container-top {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
    margin-bottom: 30px;
  }
  .tab-content__heading {
    letter-spacing: -.02em;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 2.6em;
    font-weight: 500;
    line-height: 1;
    text-align: justify;
  }
  }

.cloneable {
  padding: var(--container-padding);
  justify-content: center;
  align-items: center;
  min-height: 150vh;
  display: flex;
  position: relative;
  font-size: 1.1vw;
}

.tab-layout {
  z-index: 1;
  grid-row-gap: 3em;
  flex-flow: wrap;
  width: 90%;
  min-height: 37em;
  display: flex;
  position: relative;
}

.tab-layout-col {
  width: 50%;
}

.tab-visual-wrap {
  border-radius: .5em;
  width: 100%;
  height: 42em;
  max-height: 80vh;
  position: relative;
  overflow: hidden;
}

.tab-visual-item {
  visibility: hidden;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
}

.tab-visual-item.active {
  visibility: visible;
  position: relative;
  display: block;
}

.tab-image {
  object-fit: cover;
  border-radius: .5em;
  width: 100%;
  height: 100%;
}

.tab-layout-heading {
  margin: 0;
  font-size: 2em;
  font-weight: 500;
  line-height: 1;
  color: white;
}

.tab-content__heading {
  font-family: "Audiowide", sans-serif;
  letter-spacing: -.02em;
  margin: 0;
  font-size: 1.75em;
  font-weight: 500;
  line-height: 1;
  text-align: left;
}

.tab-content__button {
  color: #131313 !important;
  justify-content: center;
  align-items: center;
  height: 4em;
  padding: 0 1.5em;
  text-decoration: none;
  display: flex;
  position: relative;
}

.tab-content__button:hover {
  color: #fff;
  background: rgb(145 123 29);
}

/* ===== MOBILE STYLES ===== */
@media (max-width: 768px) {
  .cloneable {
    min-height: 35vh;
    font-size: 6px;
    margin-top: 530px;
  }

  .tab-layout {
    align-items: center;
    width: 95%;
    gap: 2em;
  }

  .tab-layout-col,
  .tab-visual-wrap {
    width: 100%;
    padding: 1rem;
    margin-top: -366px;
  }

  .tab-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 8px;
  }

  .tab-layout-heading {
    font-size: 3em;
    margin-bottom: 280px;
  }

  .tab-content__heading {
    font-size: 2.6em;
    text-align: center;
  }
  .tab-container-bottom{
    width: 100%;
    grid-row-gap: 3em;
    font-size: 10px;
  }
  .content-p{
    text-align: center;
  }
.tab-content-item {
    z-index: 1;
    grid-row-gap: -2.75em;
    visibility: hidden;
    flex-flow: column;
    display: flex;
    position: absolute;
    inset: auto 0% 0%;
    margin-left: 10px;
}
.filter-bar {
    margin-bottom: 60px;
    margin-left: 20px;
}
  
}

/* ===== OPTIONAL: SMALL DEVICE TWEAK ===== */
@media (max-width: 480px) {
  .filter-button {
    width: 107px;
  }

  .filter-button__p {
    font-size: 0.9em;
    margin-left: -12px;
  }
}


.services-section {
    padding: 70px 20px;
    background-color: #000;
  }
  .service-icon {
    margin-bottom: 16px;
    color: white;
  }
  /* Base state — fully visible SVG */
.service-icon .icon-svg polygon,
.service-icon .icon-svg path {
  stroke-dasharray: 60;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s ease;
}

/* On hover — play the draw animation */
.service-card:hover .icon-svg polygon,
.service-card:hover .icon-svg path {
  stroke-dashoffset: 60; 
  animation: draw 1s ease forwards;
}

@keyframes draw {
  from {
    stroke-dashoffset: 60;
  }
  to {
    stroke-dashoffset: 0;
  }
}

  .service-icon .icon-svg {
    /* width: 32px; */
    height: 32px;
    stroke: currentColor;
  }
  
  
  .containerr {
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .section-header p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .service-card {
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.1);
  }
  
  .service-card .icon {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .service-card p {
    font-size: 1rem;
    color: #ccc;
  }
/* CLIENT  */
.scroller {
  max-width: 700px;
}

.clint h2{
  color: black;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.scroller__inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(-90deg,
          transparent,
          white 20%,
          white 80%,
          transparent);
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
  width: 100px;
  width: -moz-max-content;
  width: max-content;
  flex-wrap: nowrap;
  -webkit-animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
  animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scroller .scroller__inner img {
  width: 150px;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 60s;
}

@-webkit-keyframes scroll {
  to {
      transform: translate(calc(-50% - 0.5rem));
  }
}

@keyframes scroll {
  to {
      transform: translate(calc(-50% - 0.5rem));
  }
}

.test {
  background: red !important;
}

.clint{
  margin-bottom: 20px;
}


.clint h2 {
  font-family: "Asul", serif;
  margin: 0 auto;
  font-size: 60px;
  line-height: 200%;
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.0465em;
  text-align: center;
  background: linear-gradient(-215deg, #ffffff 2.9%, #ffffff 85.05%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.clint {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 150px;
  background: rgb(0, 0, 0);
}


@media screen and (max-width:600px){
  
  .clint h1{
      font-size: 45px;
  }

  .app .fade{
      font-size: 30px;
      margin: 30px;
  }

  .app{
      height: 45vh;
  }

  .scroller .scroller__inner img {
      width: 100px;
  }
   .clint {
    padding: 0px;
  }
  .services-section {
    padding: 100px 20px;
  }
  .techno-section.visible .top {
    font-size: 42px;
  }
}

@media screen and (min-width:600px) {
  .clint h1{
      font-size: 40px;
  }
 
}


/* EXPERTISE  */

.expertise-section {
  padding: 60px 20px;
  text-align: center;
  background: #000;
}

.expertise-section h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 40px;
  font-weight: bold;
}

.expertise-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.expertise-cards .card {
  background-color: #2c2c2c;
  width: 260px;
  padding: 20px;
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.expertise-cards .card:hover {
  transform: scale(1.05);
}

.expertise-cards img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.expertise-cards h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.expertise-cards p {
  font-size: 0.95rem;
  color: #ccc;
}

.cd{
 background-color: #000;
}

.card-ai-box {
  --background: linear-gradient(to right, #13b37f 0%, #11a3c8 100%);
  padding: 0.9px;
  border-radius: 0.7rem;
  overflow: visible;
  background: var(--background);
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: auto;
}

.card-ai-box::after {
  position: absolute;
  content: "";
  top: -20px;
  left: 0px;
  right: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  transform: scale(0.86);
  filter: blur(34.5px);
  background: var(--background);
  transition: opacity 0.5s;
}

.card-ai-content {
  --color: #1f1a1d;
  background: var(--color);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  border-radius: 0.7rem;
}

.card-ai-box:hover::after {
  opacity: 0.6;
  top: 18px;
  transition: 0.6s;
}

.card-ai-box:hover .card-ai-content {
  color: #fff9f9;
  transition: color 1s;
}

.card__title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
}

.media-object {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.media-object__title {
  font-size: 1.25rem;
  max-width: 400px;
}

/* From Uiverse.io by Spacious74 */ 

.button-ai-2 {
  cursor: pointer;
  font-size: 1.4rem;
  border-radius: 16px;
  border: none;
  padding: 2px;
  background: radial-gradient(circle 80px at 80% -10%, #ffffff, #181b1b);
  position: relative;
  transition: transform 0.3s ease;
}
.button-ai-2::after {
  content: "";
  position: absolute;
  width: 65%;
  height: 60%;
  border-radius: 120px;
  top: 0;
  right: 0;
  box-shadow: 0 0 20px #ffffff38;
  z-index: -1;
}
.button-ai-2i {
  cursor: pointer;
  filter: invert(1);
  font-size: 16px;
  border-radius: 16px;
  border: none;
  padding: 2px;
  background: radial-gradient(circle 80px at 80% -10%, #ffffff, #181b1b);
  position: relative;
  transition: transform 0.3s ease;
  
}


.button-ai-2i::after {
  content: "";
  position: absolute;
  width: 65%;
  height: 60%;
  border-radius: 120px;
  top: 0;
  right: 0;
  box-shadow: 0 0 20px #ffffff38;
  z-index: -1;
}

.blob_1 {
  position: absolute;
  width: 70px;
  height: 100%;
  border-radius: 16px;
  bottom: 0;
  left: 0;
  background: radial-gradient(
    circle 60px at 0% 100%,
    #3fe9ff,
    #0000ff80,
    transparent
  );
  box-shadow: -10px 10px 30px #0051ff2d;
}

.inner_w {
  padding: 14px 25px;
  border-radius: 14px;
  color: #fff;
  z-index: 3;
  position: relative;
  background: radial-gradient(circle 80px at 80% -50%, #777777, #0f1111);
}
.inner_w::before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 14px;
  background: radial-gradient(
    circle 60px at 0% 100%,
    #00e1ff1a,
    #0000ff11,
    transparent
  );
  position: absolute;
}
.button-ai-2:hover {
  transform: scale(1.03);
  cursor: pointer;
}
.button-ai-2i:hover {
  transform: scale(1.03);
  cursor: pointer;
}

.media-object__thumbnail img {
  width: 220px;
  height: auto;
  border-radius: 12px;
}


.carrd-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  perspective: 1000px;
  position: relative;
  z-index: 1;
  margin-top: -120px;
}



.carrd-content .card__title {
  font-family: "Asul", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 43px;
  padding-left: 120px;
}

mark {
  background: linear-gradient(270deg, #d4b82f 0%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: #0000;
}

.media-object__title {
  font-size: 22px;
  margin: 20px 0;
}

.button-wr {
  margin-top: 20px;
}

.media-object__thumbnail {
  width: 100%;
  height: 150px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  margin-top: 20px;
}



.media-object {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 24px;
  gap: 24px;
}

.media-object__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  margin: 0 0 50px;
}

.media-object a{
  padding-left: 50px;
}

.media-object__thumbnail {
  width: 280px;
  height: 160px;
  border-radius: 16px;
/* background-image: url("server-room-worker-using-ai-perform-demanding-computing-tasks.jpg"); */
}

@media (max-width: 768px) {
  .carrd-container {
    flex-direction: column;
    margin-top: 20px;
    height: auto;
    padding: 20px;
  }

  .carrd {
    width: 90%;
    padding: 20px;
    border-radius: 16px;
    margin-top: 65px;
  }

  .carrd-content .card__title {
    font-size: 28px;
    padding-left: 0;
    text-align: center;
  }

  .media-object {
    flex-direction: column;
    align-items: center;
    padding: 16px;
    gap: 16px;
  }

    .media-object > div:first-child {
    order: 2; 
  }

  .media-object__thumbnail {
    order: 1; 
    width: 100%;
    height: 180px;
    border-radius: 12px;
  }

  .media-object__title {
    font-size: 12px;
    text-align: center;
    margin-bottom: 12px;
  }
  .button-ai-2{
    font-size: 16px;
  }
  
  .carrd-content .card__title {
    font-size: 28px;
    padding-left: 0;
    text-align: center;
  }
  .card__title {
    font-size: 24px;
    margin-bottom: 0.75rem;
  }

  .media-object a {
    padding-left: 0;
    text-align: center;
    display: block;
  }

  
}


.source-link {
  position: fixed;
  right: 32px;
  bottom: 32px;  
  width: fit-content;
  box-sizing: border-box;
  font-size: 16px;
  display: flex;
  padding: 0.75em 1em 0.75em 0.75em;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  border-radius: 128px;
  background: linear-gradient(270deg, #AFE8EF 0%, #E7E1FA 100%);
  color: #000;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}

.source-link svg {
  display: block;
  width: 1.5em;
  height: 1.5em;
  border-radius: 0.25em;
}

.source-link.source-link--second {
  right: auto;
  left: 32px;
}

    main > h1 {
      margin-bottom: 1.25rem;
      text-align: center;
      margin-bottom: 2rem;
      font-size: 2rem;
      color: white;
    }

    .accordion {
      --circle-x: 1.8rem;
      --circle-y: 0;
      --circle-r: 200%;
      --circle-bg: #fff;
      color: #000;
      background-color: var(--circle-bg);
      /* max-width: 56ch; */
      margin-bottom: 1rem;
      border-radius: 8px;
      display: grid;
      grid-template-rows: 0fr 0fr;
      transition: opacity 200ms, box-shadow 200ms,
        grid-template-rows var(--slide-ease) var(--slide-duration)
          var(--slide-delay);
      box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
      opacity: 0.9;
      overflow: hidden;
      overflow-anchor: none;
    }

    .accordion:not(:target):hover {
      box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.5);
    }

    .accordion:not(:target):active {
      opacity: 1;
      box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.3);
    }

    .accordion:target {
      grid-template-rows: 0fr 1fr;
    }

    .wrapper_01 {
      /* padding-block: 0 1.05rem;
      padding-inline: 1.25rem; */
      padding: 20px;
    }

    .contentt {
      font-size: var(--size-accordion-content);
      line-height: 140%;
      overflow: hidden;
    }

    .content p {
      margin-bottom: 1rem;
    }

    .title a {
      padding: 1rem 1.25rem;
      font-size: var(--size-accordion-title);
      font-weight: 800;
      color: currentColor;
      text-decoration: none;
      display: flex;
      align-items: center;
    }

    .title a::before {
      --chevron-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='white' d='M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z'/%3E%3C/svg%3E");
      content: "";
      width: 0.65rem;
      aspect-ratio: 320 / 512;
      display: inline-block;
      margin-right: 0.75rem;
      transform: rotate(var(--d, -90deg));
      transition: transform var(--slide-ease) var(--slide-duration)
        var(--slide-delay);
      mask-image: var(--chevron-icon);
      mask-size: 100% 100%;
      -webkit-mask-image: var(--chevron-icon);
      -webkit-mask-size: 100% 100%;
      background-color: currentColor;
    }

    .accordion:target .title a::before {
      --d: 90deg; /* Rotate to open */
    }

    .accordion::before,
    .accordion::after {
      content: "";
      position: absolute;
      /* width: 100%; */
      height: 100%;
      background-color: var(--circle-bg);
      mix-blend-mode: difference;
      transition: opacity var(--circle-duration), clip-path var(--circle-duration);
      pointer-events: none;
      clip-path: circle(var(--r) at var(--circle-x) var(--circle-y));
      border-radius: inherit;
      z-index: 4;
    }

    .accordion::before {
      --r: 0%;
      opacity: 0;
      
    }

    
    .accordion:target::before {
      --r: var(--circle-r);
      opacity: 1;
    }

    .accordion::after {
      --r: var(--circle-r);
      opacity: 1;
      visibility: hidden;
    }
    

    .accordion:target::after {
      --r: 0%;
      opacity: 0;
      visibility: visible;
    }

    .title a:focus-visible {
      background-color: hsl(0, 100%, 90%);
      outline: none;
    }

    .accordion:target .title a:focus-visible {
      background-color: hsl(183, 100%, 93%);
    }


    .faq {
      padding: 50px 20px;
      background: #000;
    }
    
    .container-s {
      max-width: 800px;
      margin: 0 auto;
      border: 1px dotted #888;
      padding: 2rem;
      text-align: center;
      margin-bottom: 2rem;
    }
    
    
    .faq-item {
      margin-bottom: 10px;
      background-color: #333;
    }
    
    .faq-title {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem;
      cursor: pointer;
      font-size: 1.1rem;
      font-weight: bold;
      background-color: #444;
      color: #fff;
      transition: background-color 0.3s ease;
    }
    
    .faq-title:hover {
      background-color: #555;
    }
    
    .faq-title .icon {
      font-size: 1.5rem;
      transition: transform 0.3s ease;
    }
    
    .faq-content {
      display: none;
      padding: 1rem;
      background-color: #222;
      color: #ccc;
    }
    
    input[type="checkbox"]:checked + .faq-title + .faq-content {
      display: block;
    }
    
    input[type="checkbox"]:checked + .faq-title .icon {
      transform: rotate(45deg);
    }
    
    @media (max-width: 480px) {
      .container-s {
        padding: 1rem;
      }
    
      .faq h1 {
        font-size: 1.5rem;
      }
    
      .faq-title {
        font-size: 1rem;
      }
    
      .faq-title .icon {
        font-size: 1.3rem;
      }
    }


    .accordion[data-open] {
      grid-template-rows: 0fr 1fr;
    }
    
    .accordion[data-open] .title a::before {
      --d: 90deg;
    }
    
    .accordion[data-open]::before {
      --r: var(--circle-r);
      opacity: 1;
    }
    
    .accordion[data-open]::after {
      --r: 0%;
      opacity: 0;
      visibility: visible;
    }
    
    .accordion[data-open] .title a:focus-visible {
      background-color: hsl(183, 100%, 93%);
    }
    .title label {
    padding: 1rem 1.25rem;
    font-weight: 600;
    color: currentColor;
    text-decoration: none;
    display: flex;
    font-size: 20px;
    align-items: center;
}

     @media (max-width: 600px) {
      .title label {
        font-size: 16px;
      }
      .contentt{
        font-size: 13px;
      }
    }
    .title label::before {
      --chevron-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='white' d='M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z'/%3E%3C/svg%3E");
      content: "";
      width: 0.65rem;
      aspect-ratio: 320 / 512;
      display: inline-block;
      margin-right: 0.75rem;
      transform: rotate(var(--d, -90deg));
      transition: transform var(--slide-ease) var(--slide-duration) var(--slide-delay);
      mask-image: var(--chevron-icon);
      mask-size: 100% 100%;
      -webkit-mask-image: var(--chevron-icon);
      -webkit-mask-size: 100% 100%;
      background-color: currentColor;
    }
    
    .accordion:has(input:checked) {
      grid-template-rows: 0fr 1fr;
      background: black;
      color: white;
      border: solid 1px;
    }
    
    .accordion:has(input:checked) .title label::before {
      --d: 90deg;
    }
    
    .accordion:has(input:checked)::before {
      --r: var(--circle-r);
      opacity: 1;
    }
    
    .accordion:has(input:checked)::after {
      --r: 0%;
      opacity: 0;
      visibility: visible;
    }

    /* TESTINOMIAL  */
    
    .testimonial-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 3rem;
      z-index: 2;
      position: relative;
    }
    
    .testimonial-header h2 {
      font-size: 2.5rem;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 1rem;
      line-height: 1.3;
      font-family: "Playfair Display", serif;
    }
    
    .testimonial-header p {
      font-size: 1rem;
      color: #8b8b8b;
      margin-bottom: 1.5rem;
    }
    
    .testimonial-header .highlight {
      color: #838314; 
      font-weight: 500;
    }
    
    
    .testimonial-section {
      position: relative;
      padding: 5rem 1rem;
      text-align: center;
      background-color: #000000;
      overflow: hidden;
    }
    
    .testimonial-container {
      position: relative;
      max-width: 800px;
      margin: auto;
      z-index: 1;
    }
    
    .circle-background {
      position: absolute;
      top: 68%; 
      left: 50%;
      width: 400px;
      height: 400px; 
      background: linear-gradient(180deg,rgba(99, 75, 255, 0.505) 0%, rgba(0, 0, 0, 0) 57%);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      z-index: 0;
      opacity: 1;
    }

    /* .circle-background {
      position: absolute;
      top: 72%;
      left: 50%;
      width: 900px;
      height: 302px;
      background: radial-gradient(circle at center, #006eff 30%, #00000000 100%);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      z-index: 0;
      opacity: 1;
  } */
    
    .reviewer-img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid white;
      z-index: 2;
      position: relative;
      margin-bottom: 1rem;
      display: inline-flex
;
    }
    
    .review-text {
      font-size: 1.125rem;
      font-weight: 600;
      color: #ffffff;
      margin: 1.5rem auto;
      max-width: 600px;
      line-height: 1.6;
      position: relative;
      z-index: 2;
    }
    
    .author-buttons {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 2rem;
      z-index: 2;
      position: relative;
    }
    
    .author-btn {
      border: 1px solid #ccc;
      padding: 8px 16px;
      border-radius: 999px;
      background-color: #fff;
      color: #333;
      cursor: pointer;
      font-size: 0.9rem;
      transition: all 0.3s ease;
    }
    
    .author-btn:hover {
      border-color: #6366f1;
      color: #6366f1;
    }
    
    .author-btn.active {
      background-color: #6366f1;
      color: #fff;
      border-color: #6366f1;
    }
    
   
    
    @keyframes rotateImage {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }
    .fade {
      animation: fadeIn 0.5s ease;
    }
    
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }


    @keyframes rotateImage {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }
    /* SHOWCASE  */
.showcase-slider {
  background: #000;
  padding: 80px 0;
  overflow: hidden;
   position: relative;
  min-height: 400px;
}

.slides-container {
  display: flex;
  gap: 60px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 50px; /* Controls where snapping starts */
  scrollbar-width: none;
  scroll-behavior: smooth;
  cursor: none; /* Add cursor here */
  padding: 0 20vw;
}




.slides-container::-webkit-scrollbar {
  display: none;
}
.le-sli{
  margin-left: 210px;
}
.slide {
  /* flex: 0 0 700px; */
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: 50vw;
  color: white;
  scroll-snap-align: start; 
}


.title-number {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 385px; 
}
.image-wrapper img,
.image-wrapper iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}


.image-wrapper img {
  width: 100%;
  display: block;
  filter: brightness(1);
  transition: filter 0.3s ease;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
   /* cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32"><circle cx="16" cy="16" r="14" fill="black"/><path d="M6 16 H26 M10 12 L6 16 L10 20 M22 12 L26 16 L22 20" stroke="yellow" stroke-width="2" fill="none"/></svg>') 16 16, ew-resize; */
}
.slide.active video {
  filter: brightness(0.6);
}


.text-content {
  position: absolute;
  bottom: 90px;
  left: 120px;
  right: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  /* cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32"><circle cx="16" cy="16" r="14" fill="black"/><path d="M6 16 H26 M10 12 L6 16 L10 20 M22 12 L26 16 L22 20" stroke="yellow" stroke-width="2" fill="none"/></svg>') 16 16, ew-resize; */
  
}

.text-content .cats {
  font-size: 0.75rem;
  margin-bottom: 6px;
  font-weight: bold;
  color: yellow;
  
}

.text-content .desc {
    font-weight: 800;
    width: 350px;
    font-size: 28px;
    line-height: 35px;
    margin: 22px 0 16px 0;
    /* cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32"><circle cx="16" cy="16" r="14" fill="black"/><path d="M6 16 H26 M10 12 L6 16 L10 20 M22 12 L26 16 L22 20" stroke="yellow" stroke-width="2" fill="none"/></svg>') 16 16, ew-resize; */
}

/* Active Slide */
.slide.active .overlay {
  background: rgba(0, 0, 0, 0.6);
   /* cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32"><circle cx="16" cy="16" r="14" fill="black"/><path d="M6 16 H26 M10 12 L6 16 L10 20 M22 12 L26 16 L22 20" stroke="yellow" stroke-width="2" fill="none"/></svg>') 16 16, ew-resize; */
}


.cursor-ed.drag-active {
  /* cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32"><circle cx="16" cy="16" r="14" fill="black"/><path d="M6 16 H26 M10 12 L6 16 L10 20 M22 12 L26 16 L22 20" stroke="yellow" stroke-width="2" fill="none"/></svg>') 16 16, ew-resize; */
}
.slide.active img {
  filter: brightness(0.6);
}
.slide.active .text-content {
  opacity: 1;
}

.arrow-controls {
  position: absolute;
  right: 50px;    
  bottom: 0px;    
  display: flex;
  gap: 20px;
  z-index: 10;
}

.image-wrapper video {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 100%;
  filter: brightness(1);
  transition: filter 0.3s ease;
}
iframe{
    width: 100%;
    height: 385px;
    border-radius: 11px;
}

.arrow-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid white;
  background: transparent;
  color: white;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}

.arrow-btn:hover {
  background: white;
  color: black;
}

@media (max-width: 768px) {
  .showcase-slider {
    padding: 70px 0;
  }

  .slides-container {
    padding: 0 10vw;
    gap: 20px;
  }

  .slide {
    width: 80vw; /* Wider on mobile */
  }

  .image-wrapper {
    height: 240px; /* Reduce height on small screens */
  }

  .text-content {
    bottom: 40px;
    left: 20px;
    right: 20px;
  }

  .text-content .desc {
    font-size: 18px;
    line-height: 24px;
    width: auto;
  }
    .arrow-controls {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        bottom: 0px;
    }
}

@media screen and (max-width:600px) {
    .cta-button_10{
      margin-left: 0px;
    }
    .tin-tong{
      width: 50px;
    }
}



  /* TECHNO  */

  .techno-section {
    position: relative;
    height: 70vh;
    background: black;
    overflow: hidden;
  }
  
  .techno-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .heading-r {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 13rem;
    font-family: 'Open Sans', sans-serif;
    color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: white;
    transform: translate(-50%, -50%);
    pointer-events: none;
    white-space: nowrap;
    line-height: 1;
    transition: transform 0.3s ease;
  }
  
  .heading-r.top {
    color: white;
    -webkit-text-stroke: 0;
    z-index: 10;
  }
  
  .layer-1 { z-index: 1; opacity: 0.8; }
  .layer-2 { z-index: 2; opacity: 0.6; }
  .layer-3 { z-index: 3; opacity: 0.4; }
  .layer-4 { z-index: 4; opacity: 0.2; }

  .techno-section .layer {
    opacity: 0;
    transform: translateY(20px);
  }
  
  .techno-section.visible .layer {
    opacity: 1;
    transform: translateY(0);
  }
  
  .techno-section.hidden .layer {
    opacity: 0;
    transform: translateY(20px);
  }
  
 @media (max-width: 768px) {
  .heading-r {
    font-size: 4rem; 
     line-height: 1.2;
  } 

  .layer-1 { opacity: 0.08; }
  .layer-2 { opacity: 0.05; }
  .layer-3 { opacity: 0.03; }
  .layer-4 { opacity: 0.02; }

  .heading-r.top {
    color: white;
    -webkit-text-stroke: 0;
    z-index: 10;
    opacity: 1;
  }
  .techno-section {
    height: 42vh;
}
.techno-section.visible .layer {
    opacity: 0.1;
    font-size: 50px;
    font-weight: 700;
}
.techno-section.visible .top{
  opacity: 1;
}
}

